home *** CD-ROM | disk | FTP | other *** search
/ Shareware Direct / Shareware Direct.iso / esf / esftt1 / register.bat < prev    next >
DOS Batch File  |  1993-08-24  |  1KB  |  29 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ We are now ready to print a copy of the registration form for the ESF's│
  5. echo │ TrueType Collection 1. Registered users receive a free font newsletter,│
  6. echo │ additional bonus fonts, free CompuServe account with $15 access credit,│
  7. echo │ access to technical support, and can purchase our giant 202 outline    │
  8. echo │ TrueType collection at the special price of $79.50, or specialty type  │
  9. echo │ collections at $35 each.                                               │
  10. echo │                                                                        │
  11. echo │ Make sure your printer is on and ready to run. Then press the enter    │
  12. echo │ key to print a copy of the shareware registration form.                │
  13. echo │                                                                        │
  14. echo │ If you *don't* want to print this, press the Ctrl-C key now to abort   │
  15. echo │ this batch file and return to INSTALL.                                 │
  16. echo └────────────────────────────────────────────────────────────────────────┘
  17. if "%1"=="" goto bad
  18. pause
  19. copy register.doc %1:
  20. goto good
  21. :bad
  22. echo You must include a printer port in the command for this batch file. Try:
  23. echo REGISTER LPT1
  24. echo    or
  25. echo REGISTER COM2
  26. :good
  27.  
  28.  
  29.